home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-04.Z / 94-04 / text0005.txt < prev    next >
Encoding:
Text File  |  1994-04-30  |  8.7 KB  |  224 lines

  1. We just received the new Microsoft TCP/IP.  It works better than the previous
  2. one.  (We have one very finicky app that we'd like to run off a LM server.)
  3. The only problem we've found so far is that ping doesn't use DNS; you must
  4. use the numerical address.  The telnet isn't included in the beta, either.
  5. I expect they will just update the Terminal applet to use TCP/IP as they did
  6. in NT.  Every Winsock app we've tried runs just fine.  It sure is nice to have
  7. 600k free again.
  8. From news@bigblue.oit.unc.edu Thu Mar 31 06:28:15 1994
  9. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  10.           id AA05203; Thu, 31 Mar 1994 12:12:09 -0500
  11. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  12.           id AA26859; Thu, 31 Mar 1994 12:00:54 -0500
  13. Received: from GATEWAY by bigblue with netnews
  14.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  15. To: winsock@sunsite.unc.edu
  16. Date: 31 Mar 1994 06:28:15 GMT
  17. From: ifdi517@utxsvs.cc.utexas.edu (MGD)
  18. Message-Id: <2ndqhv$ikp@geraldo.cc.utexas.edu>
  19. Organization: The University of Texas at Austin
  20. Sender: ses
  21. Subject: WinTrumpet
  22.  
  23. does WinTrumpet support encoding and decoding?  And if it does, does 
  24. anyone know is it as good as WinVn?  Thanks.
  25.  
  26. MGD
  27. From news@bigblue.oit.unc.edu Wed Apr  2 23:36:00 1994
  28. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  29.           id AA05210; Thu, 31 Mar 1994 12:12:11 -0500
  30. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  31.           id AA27351; Thu, 31 Mar 1994 11:54:42 -0500
  32. Received: from GATEWAY by bigblue with netnews
  33.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  34. To: winsock@sunsite.unc.edu
  35. Date: 31 Mar 1994 04:36:00 -0500
  36. From: roddie@ionews.io.org (Roddie Hasan)
  37. Message-Id: <2ne5i0$86g@ionews.io.org>
  38. Organization: Internex Online (io.org) Data: 416-363-4151  Voice: 416-363-8676
  39. Sender: ses
  40. Subject: Trumpet Winsock
  41.  
  42. Hi all...I've got a couple of questions.  
  43.  
  44. I'm testing out a SL/ip connection from home with Trumpet Winsock.  I've 
  45. figured out how to get connected, and can finally telnet and ftp to the 
  46. _system_ only.  I can't TelNet or FTP outside io.org.  Any ideas?
  47.  
  48. Also, is there a better IRC client for Windows then WINIRC?  
  49.  
  50. Thanks...
  51. -- 
  52. { Roddie Hasan               "Lets bungle in the jungle"    - Jethro Tull   }
  53. { London, Ontario            "Khalli kitfik a'a kitfi"      - Najwa Karam   }
  54. { roddie@io.org             "Wake up and smell the humous" - Genie         }
  55. { (519) 649-1765         "December 1963"                - The 4 Seasons }
  56. From news@bigblue.oit.unc.edu Thu Mar 31 06:29:07 1994
  57. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  58.           id AA05221; Thu, 31 Mar 1994 12:12:12 -0500
  59. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  60.           id AA10209; Thu, 31 Mar 1994 11:57:39 -0500
  61. Received: from GATEWAY by bigblue with netnews
  62.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  63. To: winsock@sunsite.unc.edu
  64. Date: 31 Mar 1994 06:29:07 GMT
  65. From: jnlin@netrd.net.tw (jnlin)
  66. Message-Id: <2ndqjj$6q8@news.csie.nctu.edu.tw>
  67. Organization: III
  68. Sender: ses
  69. Subject: Question about WSAAsyncSelect events
  70.  
  71. Dear Sir:
  72.  
  73.      I have a question about WSAAsyncSelect.
  74.  
  75.      The scenarinos are as following
  76.  
  77.      [Server]                        [Client]
  78.  
  79.      socket() /*tcp socket*/
  80.      bind()
  81.      listen() /* port=nnnn */
  82.                                      socket()
  83.                                      connect() /* connect to port nnnn */
  84.                                      send()    /* send out data */
  85.                                      closesocket() /* close socket */
  86.      WSAAsyncSelect(FD_ACCEPT|
  87.                     FD_READ|
  88.                     FD_WRITE|
  89.                     FD_CLOSE)
  90.      
  91.  
  92.  
  93.      What kinds of events should Server receive?
  94.  
  95.      Under trumpet kernel, the Server receives FD_ACCEPT and FD_CONNECT
  96.      events.  (I think this should be wrong.)
  97.  
  98.      Under Netmanage kernel, the Server receives FD_ACCEPT on old listen
  99.      socket and FD_READ, FD_WRITE and FD_CLOSE on new accepted socket.
  100.  
  101.      I hope to receive FD_ACCEPT on old listen socket and FD_READ, 
  102.      FD_CLOSE on the new accepted socket. About FD_WRITE, the peer
  103.      socket has closed it. Should we still receive this event?
  104.  
  105.  
  106. Jyun-Naih
  107. From news@bigblue.oit.unc.edu Thu Mar 31 10:19:12 1994
  108. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  109.           id AA05234; Thu, 31 Mar 1994 12:12:15 -0500
  110. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  111.           id AA14885; Thu, 31 Mar 1994 12:02:51 -0500
  112. Received: from GATEWAY by bigblue with netnews
  113.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  114. To: winsock@sunsite.unc.edu
  115. Date: Thu, 31 Mar 1994 10:19:12 GMT
  116. From: klaus@mail.sz.etc.tu-bs.de (Klaus Troja)
  117. Message-Id: <klaus.432.2D9AA3A0@mail.sz.etc.tu-bs.de>
  118. Organization: Sprachenzentrum der TU Braunschweig
  119. Sender: ses
  120. References: <2ncld0$14h@mailer.fsu.edu>
  121. Subject: Re: Why does Trumpet News put files on file server?
  122.  
  123. In article <2ncld0$14h@mailer.fsu.edu> jclark@mailer.fsu.edu (Huh?) writes:
  124. >From: jclark@mailer.fsu.edu (Huh?)
  125. >Subject: Why does Trumpet News put files on file server?
  126. >Date: 30 Mar 1994 19:54:08 GMT
  127.  
  128. >I've been using QVTNet's newsreader for some time and would like to
  129. >switch over to Trumpet News.  But I can't figure out why every time
  130. >I run it, it insists on putting its news.prm and news.ini
  131. >files on the network file server instead on on my hard
  132. >disk.  As I recall, even the old DOS version did the same
  133. >thing.  How can I get Trumpet News to keep its files on my
  134. >C drive (in either the trumpet directory or windows
  135. >directory -- I don't care which)?
  136. >---
  137. >Joe Clark
  138. >Florida State Univ.
  139. >jclark@mailer.fsu.edu
  140. >904-644-0830 FAX -6257
  141.  
  142. -disable_nw on the command line or in environment (I do not know what to set 
  143. there) does the job. There are many more options; just have a look at the 
  144. docs.
  145.  
  146. Klaus
  147. From news@bigblue.oit.unc.edu Thu Mar 31 10:24:19 1994
  148. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  149.           id AA05244; Thu, 31 Mar 1994 12:12:17 -0500
  150. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  151.           id AA23593; Thu, 31 Mar 1994 12:03:17 -0500
  152. Received: from GATEWAY by bigblue with netnews
  153.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  154. To: winsock@sunsite.unc.edu
  155. Date: Thu, 31 Mar 1994 10:24:19 GMT
  156. From: klaus@mail.sz.etc.tu-bs.de (Klaus Troja)
  157. Message-Id: <klaus.433.2D9AA4D3@mail.sz.etc.tu-bs.de>
  158. Organization: Sprachenzentrum der TU Braunschweig
  159. Sender: ses
  160. References: <84142.walstrom@mr.net>
  161. Subject: Re: Timeout? : ODI+Novell+Trumpet Winsock +mosaic....
  162.  
  163. In article <84142.walstrom@mr.net> "Tom Walstrom" <walstrom@mr.net> writes:
  164. >From: "Tom Walstrom" <walstrom@mr.net>
  165. >Subject: Re: Timeout? : ODI+Novell+Trumpet Winsock +mosaic....
  166. >Date: Wed, 30 Mar 94 20:35:15 CST
  167.  
  168. >On Mon, 28 Mar 1994 23:10:58 GMT, 
  169. >Ondrej Zoltan  <ozoltan@post.its.mcw.edu> wrote:
  170.  
  171. >>I am using Trumpet Winsock with ODI drivers on Novell LAN. When I start 
  172. >>windows and TCPman, all windows applications works OK. (Mosaic, hgopher, 
  173. >>cello, TrumpetNews reader...).  But I found 2 problems (maybe it is same
  174. >one):
  175. >>
  176. >>1. if I run DOS application (from Windows, i.e. POPmail) and THEN I try to
  177. >use 
  178. >>ie Mosaic, it just hangs. I need to shut down and restart TCPman and then  it
  179. >>will start to work again.
  180. >>
  181.  
  182. >Our experience is that if you have tcpman loaded your DOS clients WILL NOT 
  183. >WORK.  If you shell to DOS to run TCP clients you must first shut down 
  184. >TCPMAN.
  185.  
  186. >Good luck,
  187.  
  188. >Tom
  189.     
  190. There is only one packet driver that is taken by TCPMAN/WINSOCK. If you want 
  191. further apps (DOS programs for packet driver) running you have to use a 
  192. packet multiplexer. Pktmux does this job just fine. I use this setup all the 
  193. time with no problems at all.
  194. I load pktmux before starting windows and remove it after exiting. So there 
  195. is no memory wasted under plain dos.
  196.  
  197. Klaus
  198. From news@bigblue.oit.unc.edu Thu Mar 31 12:36:56 1994
  199. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  200.           id AA09770; Thu, 31 Mar 1994 12:42:09 -0500
  201. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  202.           id AA12132; Thu, 31 Mar 1994 12:12:12 -0500
  203. Received: from GATEWAY by bigblue with netnews
  204.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  205. To: winsock@sunsite.unc.edu
  206. Date: 31 Mar 1994 12:36:56 GMT
  207. From: eivindh@met.sintef.no
  208. Message-Id: <2neg58$ssc@ugle.unit.no>
  209. Organization: SINTEF Materials Technology
  210. Sender: ses
  211. Subject: Plain Windows 3.1(1) MS TCP-32 VxD beta Winsock
  212.  
  213. This might be a silly question, anyway:
  214.  
  215. Is the (very much discussed) MS TCP-32 VxD beta Winsock
  216. to be used only with Windows for Workgroups?
  217.  
  218. What about plain Windows 3.1(1), is this not sufficient?
  219.  
  220. I guess any answeres would be interesting to others than myself!
  221.  
  222. Thanx
  223.  
  224.